{% extends 'base_dashboard.html' %} {% block title %}Student Dashboard — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

My Learning Dashboard

Welcome back, {{ request.user.get_display_name }}

{{ approved_count }}
Active Courses
{{ pending_count }}
Pending
{{ rejected_count }}
Rejected
{{ enrollments.count }}
Total
{% if approved_courses %}
Continue Learning
Browse More
{% for enrollment in approved_courses %}
{% if enrollment.course.thumbnail %} {{ enrollment.course.title }} {% else %}
{% endif %}
{{ enrollment.course.title|truncatechars:40 }}

{{ enrollment.course.short_description|truncatechars:60 }}

Continue Learning
{% endfor %}
{% endif %} {% if pending_count > 0 %}
Awaiting Approval
{% for enrollment in enrollments %} {% if enrollment.status == 'pending' %}
{{ enrollment.course.title }}
Requested {{ enrollment.requested_at|date:"M d, Y" }}
{% if not enrollment.payment_proof %} Upload Payment {% else %} Payment Uploaded — Awaiting Review {% endif %}
{% endif %} {% endfor %}
{% endif %} {% for enrollment in enrollments %}{% if enrollment.status == 'rejected' %}{% if forloop.first %}
Rejected Enrollments
{% endif %}
{{ enrollment.course.title }}
{% if enrollment.rejection_reason %}
{{ enrollment.rejection_reason }}
{% endif %}
Rejected on {{ enrollment.approved_at|date:"M d, Y"|default:"—" }}
Re-Apply
{% if forloop.last %}
{% endif %} {% endif %}{% endfor %}
Discover New Courses

Expand your skills with our expert-led courses.

Browse Courses
{% endblock %}